home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Format 1995 June
/
MacFormat 25.iso
/
Shareware City
/
Developers
/
OutOfPhase1.1 Source
/
OutOfPhase Folder
/
ErrorDaemon.h
< prev
next >
Wrap
Text File
|
1994-07-22
|
806b
|
32 lines
/* ErrorDaemon */
#ifndef Included_ErrorDaemon_h
#define Included_ErrorDaemon_h
/* ErrorDaemon module depends on */
/* MiscInfo.h */
/* Audit */
/* Debug */
/* Definitions */
/* Memory */
struct ErrorDaemonRec;
typedef struct ErrorDaemonRec ErrorDaemonRec;
/* get a new error daemon */
ErrorDaemonRec* NewErrorDaemon(void);
/* dispose of the error daemon */
void DisposeErrorDaemon(ErrorDaemonRec* Daemon);
/* report a new clamping value. value should be positive and greater than 1 */
void ErrorDaemonReportClamping(ErrorDaemonRec* Daemon, float ClampedValue);
/* return True if clamping occurred */
MyBoolean ErrorDaemonDidClampingOccur(ErrorDaemonRec* Daemon);
/* obtain the maximum clamping value */
float ErrorDaemonGetMaxClamping(ErrorDaemonRec* Daemon);
#endif